/* 主视觉区 */
.joinus-bg {
    width: 74%;
    height: auto;
    position: relative;
    overflow: hidden;
    background-color: #FCFCFC;
}

.joinus-title {
    font-size: 60px;
    font-weight: 700;
    color: #002F41;
    margin-top: 10vh;
}

.joinus-title-cn {
    font-size: 48px;
    font-weight: 700;
    color: #002F41;

    margin-bottom: 22px;
}

.joinus-desc {
    font-size: 17px;
    color: #555;
    margin-bottom: 32px;
}

.joinus-img-wrap {
    margin-bottom: 44px;
}

.joinus-img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

/* 职位列表 */
.job-list {
    margin-top: 16px;
}

.job-item {
    background: #fff;
    border-radius: 9px;
    margin-bottom: 18px;
    box-shadow: 0 2px 10px 0 rgba(18,67,139,0.07);
    transition: box-shadow .2s;
}

.job-header {
    cursor: pointer;
    padding: 26px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 30px;
    font-weight: 700;
    color: #002F41;
    border-bottom: 1px solid #f2f2f2;
}

    .job-header .job-title {
        color: #002F41;
    }

    .job-header .job-label {
        margin-left: 18px;
        font-size: 24px;
        font-weight: 600;
        color: #002F41; /* 备用颜色 */
        background: linear-gradient(0deg, #1B4EA0 0.12%, #2A9FD1 100%); /* 渐变背景 */
        -webkit-background-clip: text; /* 仅裁剪文字部分 */
        -webkit-text-fill-color: transparent; /* 填充文字为透明 */
    }

        .job-header .job-label.salary {
            color: #002F41;
            font-size: 18px;
        }

    .job-header .job-info {
        font-size: 18px;
        color: #002F41;
        font-weight: 400;
        margin-left: 24px;
    }

.job-arrow {
    font-size: 22px;
    color: #b6b6b6;
    transition: transform .25s;
}

.job-item.open .job-arrow {
    transform: rotate(180deg);
    color: #218dff;
}

.job-detail {
    padding: 24px 38px 28px 38px;
    font-size: 18px;
    color: #002F41;
    line-height: 2.0;
    opacity: 0.6;
    display: none;
}
    .job-detail p {
        font-weight:bold;
    }

    .job-item.open .job-detail {
        display: block;
    }
